-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWcsStr.c
64 lines (47 loc) · 1.54 KB
/
WcsStr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*++
toro C Library
https://github.com/KilianKegel/toro-C-Library#toro-c-library-formerly-known-as-torito-c-library
Copyright (c) 2017-2025, Kilian Kegel. All rights reserved.
SPDX-License-Identifier: GNU General Public License v3.0
Module Name:
WcsStr.c
Abstract:
Implementation of the Standard C function.
Returns a pointer to the first occurrence of a search wide string in a wide string.
Author:
Kilian Kegel
--*/
#include <stddef.h>
/**
Synopsis
#include <wchar.h>
wchar_t* wcsstr(const wchar_t* pszStr, const wchar_t* pszSubStr);
Description
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/strstr-wcsstr-mbsstr-mbsstr-l?view=msvc-160
Parameters
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/strstr-wcsstr-mbsstr-mbsstr-l?view=msvc-160#parameters
Returns
https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/strstr-wcsstr-mbsstr-mbsstr-l?view=msvc-160#return-value
**/
wchar_t* wcsstr(const wchar_t* pszStr, const wchar_t* pszSubStr) {
const wchar_t* pRet = NULL;
wchar_t* pPos = (wchar_t*)&pszStr[-1];
int i;
do {
if ('\0' == pszSubStr[0]) {
pRet = pszStr;
break;
}
while (*++pPos) {
pszStr = pPos;
i = 0;
while (pszStr[i] && pszSubStr[i] && (pszStr[i] == pszSubStr[i]))
i++;
if ('\0' == pszSubStr[i]) {
pRet = pPos;
break;
}
}
} while (0);
return (wchar_t*)pRet;
}